From e563609cd11c9ffdf07659f7ab4ea29ddd8ef267 Mon Sep 17 00:00:00 2001 From: Mike Hommey Date: Mon, 5 Apr 2010 17:58:23 +0200 Subject: [PATCH] Don't error-out when run-time libsqlite is older than build-time libsqlite In Debian, we have shlibs to handle this. Gbp-Pq: Topic debian-hacks Gbp-Pq: Name Don-t-error-out-when-run-time-libsqlite-is-older-tha.patch --- storage/mozStorageService.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/storage/mozStorageService.cpp b/storage/mozStorageService.cpp index d4e52ff711..0e1b26dd1e 100644 --- a/storage/mozStorageService.cpp +++ b/storage/mozStorageService.cpp @@ -197,6 +197,7 @@ Service::getSingleton() return do_AddRef(gService); } +#if 0 // Ensure that we are using the same version of SQLite that we compiled with // or newer. Our configure check ensures we are using a new enough version // at compile time. @@ -214,6 +215,7 @@ Service::getSingleton() } MOZ_CRASH("SQLite Version Error"); } +#endif // The first reference to the storage service must be obtained on the // main thread. -- 2.30.2